/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  position: fixed;
  border-radius: 50%;
}

/* BASE */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #0f172a;
}

/* CONTAINERS */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 1.5rem;
}

.narrow {
  max-width: 520px;
}

/* HEADER */
.main-header {
  background: rgba(2, 6, 23, 0.95);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 44px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: #fa030fe0;
}

/* SECTIONS */
.page-section {
  padding: 4rem 0;
}

.alt-bg {
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

.content-box {
  background: white;
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

h1 {
  margin-bottom: 1rem;
}

h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
  color: #1e293b;
}

.intro {
  margin-bottom: 1.5rem;
  color: #475569;
}

/* ADSENSE SAFE TEXT */
.adsense-text {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #475569;
}

/* FOOTER */
.main-footer {
  background: #020617;
  color: #cbd5e1;
  text-align: center;
  padding: 1.5rem;
}

.main-footer a {
  color: #38bdf8;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

/* FLOATING CONTACT BUTTONS */
.whatsapp-float {
  position: fixed;
  right: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  z-index: 9999;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  text-decoration: none;
}

/* WhatsApp */
.whatsapp-float {
  bottom: 20px;
  background: #25d366;
}

.whatsapp-float:hover {
  background: #020503da;
}

.call{
  bottom:25px;
  left:25px;
  background:#0ea5e9;
}
 .call:hover{
  background:#04010eb9;
  transition: cubic-bezier(0.55, 0.085, 0.68, 0.53);

}

/* Floating buttons */
.floating{
  position:fixed;
  z-index:999;
  width:60px;
  height:60px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  color:#fff;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,.4);
}

/* Hover */
.whatsapp-float:hover {
  transform: scale(1.05);
  color: #2a05f7ea;
}

/* Hide call button on desktop */
@media (min-width: 1024px) {
  .call-float {
    display: none;
  }
}
